/*
 * Unique CSS for the Contact Us page.
 * Prefix all classes with 'au' to prevent conflicts.
 */

/*
 * Global Styles
 * Set up a clean, full-page layout with a background image.
 * No general styling as per request.
 */
.au-background {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Inter', sans-serif;
}

/*
 * Main Container for the Glassmorphic Effect
 * Centers the content and adds padding.
 */
.au-container {
    max-width: 90%;
    min-width: 50vw;
    padding: 2.5rem;
    text-align: center;
    border-radius: 25px;
    /* Glassmorphism magic */
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* For Safari support */
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/*
 * Text Styling
 */
.au-heading {
    font-size: 3em;
    margin-top: 0;
    margin-bottom: 0.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
}

.au-text {
    font-size: 1.2em;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: white;
    margin-bottom: 2em;
}

/* New style for the clickable links and hover effect */
.au-contact-link {
    text-decoration: none; /* Removes underline from links */
    display: block; /* Ensures the whole block is clickable */
    transition: all 0.3s ease-in-out;
    border-radius: 20px;
}

.au-contact-link:hover {
    background: rgba(255, 255, 255, 0.1); /* Subtle highlight on hover */
    transform: scale(1.05); /* Slight zoom effect */
}

.au-contact-item {
    font-size: 1.1em;
    color: white;
    margin: 0.5em 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.au-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.au-button:hover {
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}
